home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_gen / instal11.zip / SETUP.PAS < prev    next >
Pascal/Delphi Source File  |  1996-01-08  |  644b  |  29 lines

  1. (************************)
  2. (*                       *)
  3. (* installation programm *)
  4. (* version 1.00a         *)
  5. (*                       *)
  6. (* --------------------- *)
  7. (*                       *)
  8. (* (c)1996 by J. BERTRAND*)
  9. (* Delphi 1.0 by Borland *)
  10. (*                       *)
  11. (*************************)
  12. program Setup;
  13.  
  14. uses
  15.   Forms,
  16.   Routines in 'ROUTINES.PAS' {Dialogue},
  17.   Disque in 'DISQUE.PAS',
  18.   Lecture in 'LECTURE.PAS',
  19.   Decla in 'DECLA.PAS',
  20.   Uinfo in 'UINFO.PAS' {Info};
  21.  
  22. {$R *.RES}
  23.  
  24. begin
  25.   Application.CreateForm(TDialogue, Dialogue);
  26.   Application.CreateForm(TInfo, Info);
  27.   Application.Run;
  28. end.
  29.